home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_07 / 9n07094c < prev    next >
Encoding:
Text File  |  1991-05-26  |  314 b   |  17 lines

  1.  
  2.     Display *display;
  3.     Window  window;
  4.     GC      gc;
  5.     int     x, y;
  6.     char    *string;
  7.     int     length;
  8.  
  9.     XDrawImageString( display, window,
  10.             gc, x, y,
  11.             string, length );
  12.  
  13.     XDrawString( display, window,
  14.             gc, x, y,
  15.             string, length );
  16.  
  17.